From a896e816af763ab9c35bb7fb2f63a0928be3b530 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 11 Jul 2008 12:44:15 +0100 Subject: [PATCH] Fix memory leak in xend Signed-off-by: Jim Fehlig --- tools/python/xen/xend/XendDomainInfo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py index 422d728078..719719ff64 100644 --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -2613,6 +2613,7 @@ class XendDomainInfo: def _cleanupVm(self): """Cleanup VM resources. Idempotent. Nothrow guarantee.""" + self.metrics.destroy() self._unwatchVm() try: -- 2.30.2